home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 5: The Fifth Dimension
/
17 Bit - The Fifth Dimension (1995)(17 Bit Software)[!].iso
/
files
/
3414a.dms
/
3414a.adf
/
3.0bUpdate
/
Macros.LHA
/
AddCustomIndexEntry.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-09-20
|
715b
|
20 lines
/* $VER: AddCustomIndexEntry.rexx 1.0 (02.9.94)
Copyright 1994 Soft-Logik Publishing Corporation
May not be distributed without Soft-Logik Publishing Corporation's express written permission */
OPTIONS RESULTS
ADDRESS 'PAGESTREAM'
/* Allocate requester */
allocarexxrequester '"Work in Progress"' 444 63
reqhandle=result
/* Add gadgets */
addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
addhandle=result
addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
doarexxrequester reqhandle
freearexxrequester reqhandle
EXIT